home *** CD-ROM | disk | FTP | other *** search
/ Gigarom 1 / Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso / FILES / BBS / MUBBS / MUBBS etc.cpt / Module Source / Module routine list.txt < prev    next >
Text File  |  1991-11-05  |  3KB  |  57 lines

  1. @0    JMP send         /* sends text to the user */
  2. @1    JMP print        /* sends text only to the sysop screen */
  3. @2    JMP sendtext    /* sends a text file like ":folder1:myfile.txt" */
  4. @3    JMP wait        /* Use this to delay int secs "wait(secs)" */
  5. @4    JMP cmd1        /* Sends the string then gets ONE character in input */
  6. @5    JMP cmd1noecho    /* Sends the string, then waits for 1 character */
  7.                     /* Does not echo the character ! */
  8. @6    JMP sendnc        /* send a line without checking for controls */
  9. @7    JMP showline    /* shows the whole line to the mac screen */
  10. @8    JMP clock        /* the Mac trap CLOCK() */
  11.                     /* puts it in input [G->u] */
  12. @9    JMP portsin        /* get a line of input max. chars long "portsin(buf,max)" */
  13.                     /* YOU supply the buffer to put it in, max is a int */
  14. @10    JMP passportsin    /* get a line of input max. chars long FOR PASWORDS */
  15.                     /* sends a * for each character "passportsin(buf,max)" */
  16. @11    JMP module        /* call a module by name, and what mode to call it */
  17.                     /* get a line of input max. chars long "module(mode,name)" */
  18. @12    JMP gettime        /* returns the time / date how ever you want */
  19.                     /* use the format string from "strftime" */
  20. @13    JMP switchuser    /* call this to switch over to another user (done at input routines) */
  21.                     /* DO NOT CALL THIS ! It's done for you */
  22.                     
  23. @14    JMP fopen        /* These are calls to stdio routines that arn't */
  24. @15    JMP fclose        /* included in ANSI-MUBBS, see the Think C Reference manual */
  25. @16    JMP fread        /* " " */
  26. @17    JMP fwrite        /* " " */
  27. @18    JMP ftell        /* " " */
  28. @19    JMP fsetpos        /* " " */
  29. @20    JMP fgetpos        /* " " */
  30. @21    JMP fseek        /* " " */
  31. @22    JMP freopen        /* " " */
  32. @23    JMP fputs        /* " " */
  33. @24    JMP fputc        /* " " */
  34. @25    JMP fgetc        /* " " */
  35. @26    JMP fgets        /* " " */
  36. @27    JMP fflush        /* " " */
  37. @28    JMP fprintf        /* " " */
  38. @29    JMP fscanf        /* " " */
  39. @30    JMP clearerr    /* " " */
  40. @31    JMP scanf        /* " " */
  41. @32    JMP sscanf        /* " " */
  42. @33    JMP sprintf        /* " " */
  43. @34    JMP rewind        /* " " */
  44. @35    JMP rename        /* " " */
  45. @36    JMP remove        /* " " */
  46. @37    JMP ungetc        /* " " */
  47. @38    JMP puts        /* " " */
  48. @39    JMP perror        /* " " */
  49. @40    JMP otheruser    /* call this to switch over to another user when in a long loop */
  50.                     /* that doesn't "send" or "input" anything, call this as much as you want */
  51. @41    JMP mackey        /* get a key from the mac keyboard, return TRUE if there is one */
  52.                     /* this is done for you in "in", but just in case you want to read it */
  53. @42    JMP loguser        /* call with the User's location, writes to a log file if */
  54.                     /* logmode is > 1, no more than 64 characters allowed ! */
  55. @43    JMP printout    /* sends to the Monitor screen regardless of the setting of G->noprint */
  56. @44    JMP versionck    /* checks the version of MUBBS against whatever you specify */
  57.